home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 May
/
CMCD0505.ISO
/
Software
/
Shareware
/
Utilitare
/
010editor
/
010ed20.exe
/
{app}
/
Scripts
/
MultiplePaste.1sc
< prev
next >
Wrap
Text File
|
2004-10-25
|
915b
|
39 lines
//-----------------------------------
//--- 010 Editor v1.0 Script File
//
// Name: MultiplePaste.1sc
// Author: SweetScape Software
// Revision: 2.0
// Purpose: Pastes bytes from the clipboard
// into the file multiple times.
//-----------------------------------
// Define variables
int i, count;
// Check that a file is open
if( FileCount() == 0 )
{
MessageBox( idOk, "MultiplePaste", "MultiplePaste can only be executed when a file is loaded." );
return -1;
}
// Input number of time to paste
count = InputNumber( "MultiplePaste", "Enter number of times to paste:", "2" );
if( count == BAD_VALUE )
return -1;
// Check count
if( count <= 0 )
{
MessageBox( idOk, "MultiplePaste", "Invalidate input." );
return -1;
}
// Paste multiple times
for( i = 0; i < count; i++ )
{
PasteFromClipboard();
SetSelection( GetCursorPos(), 0 );
}